home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / pccsmysqladm.nasl < prev    next >
Text File  |  2005-03-31  |  1KB  |  55 lines

  1. #
  2. # This script was written by Georges Dagousset <georges.dagousset@alert4web.com>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  name["english"] = "PCCS-Mysql User/Password Exposure";
  10.  
  11.  script_name(english:name["english"]);
  12.  script_id(10783);
  13.  script_bugtraq_id(1557);
  14.  script_version ("$Revision: 1.8 $");
  15.  script_cve_id("CVE-2000-0707");
  16.  
  17.  desc["english"] = "
  18. It is possible to read the include file of PCCS-Mysql, 
  19. dbconnect.inc on the remote server.
  20.  
  21. This include file contains information such as the
  22. username and password used to connect to the database.
  23.  
  24. Solution:
  25. Versions 1.2.5 and later are not vulnerable to this issue.
  26. A workaround is to restrict access to the .inc file.
  27.  
  28. Risk factor : High";
  29.  
  30.  
  31.  script_description(english:desc["english"]);
  32.  
  33.  summary["english"] = "Checks for dbconnect.inc";
  34.  script_summary(english:summary["english"]);
  35.  
  36.  script_category(ACT_GATHER_INFO);
  37.  
  38.  
  39.  script_copyright(english:"This script is Copyright (C) 2001 Alert4Web.com");
  40.  family["english"] = "CGI abuses";
  41.  script_family(english:family["english"]);
  42.  script_dependencie("find_service.nes", "no404.nasl");
  43.  script_require_ports("Services/www", 80);
  44.  exit(0);
  45. }
  46.  
  47. #
  48. # The script code starts here
  49. #
  50. include("http_func.inc");
  51. include("http_keepalive.inc");
  52. port = get_http_port(default:80);
  53. res = is_cgi_installed_ka(port:port, item:"/pccsmysqladm/incs/dbconnect.inc");
  54. if( res )security_hole(port);
  55.